🛠️ All DevTools
Showing 3341–3360 of 4442 tools
Last Updated
May 02, 2026 at 08:00 PM
Show HN: Meetup.com and eventribe alternative to small groups
Hacker News (score: 63)[Other] Show HN: Meetup.com and eventribe alternative to small groups Mobile first open-source RSVP platform. Alternative for meetup.com / eventribe for small companies and groups. If you have a small group and don't want to pay for services you can easily selfhost this solution. Open for improvements and for feedback, ofc.<p>- One-Click Sharing - Each event gets a unique, memorable URL. Share instantly via any platform or messaging app. - No Hassle, No Sign-Ups - Skip registrations and endless forms. Unlike other event platforms, you create and share instantly — no accounts, no barriers. - Effortless Simplicity - Designed to be instantly clear and easy. No learning curve — just open, create, and go.
Show HN: React Web Camera – Fix <input type=file> single-photo limit
Show HN (score: 6)[Other] Show HN: React Web Camera – Fix <input type=file> single-photo limit What we built<p>React Web Camera is a lightweight, reusable React component that allows users to capture multiple photos in one camera session, in-browser. It works across standard web apps, responsive UIs, and Progressive Web Apps (PWAs)—unlocking a smoother experience than the default <input type="file" capture> element.<p>The problem<p>On mobile (and increasingly on desktops), using: <input type="file" accept="image/*" capture="environment"> only allows taking one picture before the camera closes. Want to add more? You have to reopen it each time.<p>How React Web Camera solves it<p>Opens the camera inline in-browser, Lets the user capture multiple photos in one go, Allows previewing captured photos, removing unwanted ones, and submitting everything in a batch, Fully client-side, respects user privacy, Supported across web, responsive UIs, and installable PWAs.
Show HN: I made an Animal Crossing style letter editor
Hacker News (score: 42)[Other] Show HN: I made an Animal Crossing style letter editor I made a simple open-source letter editor inspired by Animal Crossing NH. Took me forever to look over each card, but I'm quite pleased with how it turned out. You can even click the bottle in the bottom right to see a random letter design shared by other users! Now to see how long it stays up...<p>Check out the source code here: <a href="https://github.com/IdreesInc/Animal-Crossing-Letter-Generator" rel="nofollow">https://github.com/IdreesInc/Animal-Crossing-Letter-Generato...</a>
Bring Your Own Agent to Zed – Featuring Gemini CLI
Hacker News (score: 116)[CLI Tool] Bring Your Own Agent to Zed – Featuring Gemini CLI <a href="https://developers.googleblog.com/pt-br/gemini-cli-is-now-integrated-into-zed/" rel="nofollow">https://developers.googleblog.com/pt-br/gemini-cli-is-now-in...</a>
Running our Docker registry on-prem with Harbor
Hacker News (score: 24)[Other] Running our Docker registry on-prem with Harbor
spf13/cobra
GitHub Trending[CLI Tool] A Commander for modern Go CLI interactions
firecracker-microvm/firecracker
GitHub Trending[DevOps] Secure and fast microVMs for serverless computing.
microsoft/terminal
GitHub Trending[CLI Tool] The new Windows Terminal and the original Windows console host, all in the same place!
QuentinFuxa/WhisperLiveKit
GitHub Trending[API/SDK] Python package for Real-time, Local Speech-to-Text and Speaker Diarization. FastAPI Server & Web Interface
Show HN: Auto-Match – How We Built Receipt-to-Transaction Matching (Open Source)
Hacker News (score: 20)[Other] Show HN: Auto-Match – How We Built Receipt-to-Transaction Matching (Open Source) I’ve been working on automating bookkeeping tasks, and one big pain point was manually reconciling receipts with bank transactions. We built a system that runs in the background, parses receipts (including Gmail), suggests matches, and learns from confirmations to auto-match over time.<p>It's built into Midday and fully open-source.<p>Let me know if you have any questions!
Show HN: Envoy – Command Logger
Show HN (score: 9)[Other] Show HN: Envoy – Command Logger Envoy is a lightweight, background utility that logs your terminal commands. It's designed to be a simple and unobtrusive way to keep a history of your shell usage, which can be useful for debugging, tracking work, or just remembering what you did.
Terminal sessions you can bookmark
Hacker News (score: 19)[Other] Terminal sessions you can bookmark
Codalogy
Product Hunt[Other] Visualize Any Codebase Instantly Understand any code architecture in minutes. Codalogy analyzes your codebase, breaks it into clear components, and maps functionality & dependencies—so you can skip the digging and simply explore your code visually, coffee in hand.
Rube
Product Hunt[Other] Let your AI actually get things done for you Rube is a universal MCP that enables you to take actions across 600+ applications from within your AI chat, be it Cursor, Claude, VS Code, etc. It manages authentication and tool selection seamlessly and securely within the chat.
Prompt to Agent
Product Hunt[Other] Build, deploy, and monetize LangChain agents in under 5 min Build, deploy, and monetize production-ready LangChain agents in under 5 minutes. AI Native Agent platform with instant revenue generation, beginner-friendly prompt-to-agent creation, and advanced IDE for developers. Start earning from your AI agents today.
N8N MARKETPLACE
Product Hunt[Other] Premium automation templates A marketplace for premium n8n automation templates designed to help creators and businesses save time and scale faster. Keep 100% of what you earn, zero Commission!
Show HN: Regolith – Regex library that prevents ReDoS CVEs in TypeScript
Show HN (score: 8)[Other] Show HN: Regolith – Regex library that prevents ReDoS CVEs in TypeScript I wanted a safer alternative to RegExp for TypeScript that uses a linear-time engine, so I built Regolith.<p>Why: Many CVEs happen because TypeScript libraries are vulnerable to Regular Expression Denial of Service attacks. I learned about this problem while doing undergraduate research and found that languages like Rust have built-in protection but languages like JavaScript, TypeScript, and Python do not. This library attempts to mitigate these vulnerabilities for TypeScript and JavaScript.<p>How: Regolith uses Rust's Regex library under the hood to prevent ReDoS attacks. The Rust Regex library implements a linear-time Regex engine that guarantees linear complexity for execution. A ReDoS attack occurs when a malicious input is provided that causes a normal Regex engine to check for a matching string in too many overlapping configurations. This causes the engine to take an extremely long time to compute the Regex, which could cause latency or downtime for a service. By designing the engine to take at most a linear amount of time, we can prevent these attacks at the library level and have software inherit these safety properties.<p>I'm really fascinated by making programming languages safer and I would love to hear any feedback on how to improve this project. I'll try to answer all questions posted in the comments.<p>Thanks! - Jake Roggenbuck
GNU Artanis – A fast web application framework for Scheme
Hacker News (score: 124)[Other] GNU Artanis – A fast web application framework for Scheme
Show HN: First background agents in Jetbrains IDEs [video]
Show HN (score: 8)[IDE/Editor] Show HN: First background agents in Jetbrains IDEs [video] TLDR: made the first background coding agent that has an isolated workspace and runs locally<p>Howdy - I’m Kevin, co-founder of Firebender, and we built the first background coding agent in android studio / Jetbrains!<p>Why not just use Cursor background agents or OpenAI Codex?<p>Both of these require setting up a cloud container and cloning your existing developer environment, and maintaining it. Then when you want to iterate on changes as AI inevitably makes a mistake, you either throw away the work, or have to pull down the branch and clean it up. This feels really clunky. With Firebender, background agents run locally in a lightweight git worktree/IDE tab. This means when the agent is done, you can easily clean up the changes and run code with a few clicks.<p>Under the hood, the agent behaves similarly to claude code (didn’t want to reinvent the wheel), but also leverages all of the hooks into IntelliJ sdk like go-to-definition, find usages, auto-imports for accuracy, and it gives a cleaner visual UI for reviewing changes and merging them. You can use any frontier model like gpt-5/sonnet-4 as the base.<p>We’ve had to do quite a bit of reverse engineering of the IntelliJ codebase to cleanly set up and manage the isolated environment, and I think you’ll appreciate the simple UX of hitting cmd+enter to run a background agent anywhere.<p>get started docs: <a href="https://docs.firebender.com/get-started/background-agents">https://docs.firebender.com/get-started/background-agents</a><p>download the plugin: <a href="https://firebender.com">https://firebender.com</a><p>Would love to get your feedback to help us improve the tool for you! Thanks!